home *** CD-ROM | disk | FTP | other *** search
- package com.ibm.xml.parser;
-
- import java.io.InputStream;
- import java.io.Reader;
-
- public class Source {
- InputStream inputStream;
- Reader reader;
- String encoding;
-
- public Source(InputStream var1) {
- this.inputStream = var1;
- }
-
- public Source(InputStream var1, String var2) {
- this.inputStream = var1;
- this.encoding = var2;
- }
-
- public Source(Reader var1) {
- this.reader = var1;
- }
-
- public InputStream getInputStream() {
- return this.inputStream;
- }
-
- public String getEncoding() {
- return this.encoding;
- }
-
- public Reader getReader() {
- return this.reader;
- }
- }
-